home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / windows / win31 / fc32_i.arj / WWWFC4.MN_ < prev    next >
Text File  |  1993-11-09  |  622b  |  19 lines

  1. ; The  AutoExec Section is on top here.  Actually runs before File Manager
  2. ; actually appears on the screen
  3.  
  4.         TAB=num2char(9)
  5.         CR=strcat(num2char(13),num2char(10))
  6.  
  7. What is this
  8.         Message("Waht is this","This menu file, WWWFC4.MNU, is available for&CR&your use to add your own menu items.")
  9. Run Notepad
  10.         Run("Notepad.exe","")
  11. Show currently selected file
  12.         Display(5,"Current File",CurrentFile())
  13. Show currently highlighted files
  14.         a=FileItemize("")
  15.         a=strreplace(a," ",cr)
  16.         Message("Currently hilited files are",a)
  17.                               
  18.    
  19.